home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
24
/
7
/
DISK2475.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-10
|
6KB
|
145 lines
ECHO OFF
CLS
IF %1. == . GOTO SYNTAX
ECHO -----------------------------------------------------------------------
ECHO Please be advised that you may quit any time at the
ECHO "Strike a key when ready . . ." prompt by pressing the "Ctrl C" keys.
ECHO (Hold down the "Ctrl" key while pressing the "C" key)
ECHO -----------------------------------------------------------------------
PAUSE
CLS
IF %1 == HD GOTO HARDRIVE
IF %1 == hd GOTO HARDRIVE
IF %1 == FL GOTO FLOPPY
IF %1 == fl GOTO FLOPPY
IF %1 == CONT GOTO CONT
IF %1 == FINAL GOTO FINAL
:FLOPPY
ECHO This operation will install P.F.A.S. to a 2 Floppy Drive System
ECHO ------------------------------------------------------------------------
ECHO If this is NOT what you want then press "Ctrl C" keys and Type "INSTALL"
ECHO ------------------------------------------------------------------------
ECHO Otherwise Press Any Other Key to Continue.
ECHO ------------------------------------------------------------------------
PAUSE
CLS
ECHO This Installation is assuming that two (2)new disks are already formatted.
ECHO Label the disks #A-PFAS PROG and #B-PFAS DATA.
ECHO --------------------------------------------------------------------------
ECHO Insert disk #A-PFAS PROG in Drive B:.
ECHO --------------------------------------------------------------------------
PAUSE
CLS
ECHO This will copy P.F.A.S. files from original Disk #1 to #A-PFAS PROG disk
ECHO in Drive B:.
ECHO -------------------------------------------------------------------------
PAUSE
CLS
ECHO ON
COPY A:1.* B:
COPY A:2.* B:
COPY A:*.EXE B:
COPY A:*.MNU B:
COPY A:MONO.SCR B:
COPY A:COLOR.SCR B:
ECHO OFF
COPY INSTALL.BAT B:
B:
INSTALL CONT
:CONT
CLS
ECHO Take out the P.F.A.S. original Disk #1 in Drive A:
ECHO Insert your System Disk into Drive A:
ECHO This will copy file "COMMAND.COM" to disk #A-PFAS PROG in Drive B:.
ECHO -------------------------------------------------------------------------
PAUSE
COPY A:COMMAND.COM B:
CLS
ECHO Take out System Disk in Drive A:
ECHO Insert #B-PFAS DATA disk into Drive A:
ECHO ------------------------------------------------------------------------
PAUSE
COPY INSTALL.BAT A:
A:
INSTALL FINAL
:FINAL
DEL B:INSTALL.BAT
CLS
ECHO Take out #A-PFAS PROG in Drive B:
ECHO Insert original P.F.A.S. Disk #2 in Drive B:
ECHO This will copy the sample data file to your #B-PFAS DATA disk.
ECHO ------------------------------------------------------------------------
PAUSE
COPY B:90SAMPLE.DAT
CLS
ECHO -------------------------------------------------------------------------
ECHO Installation to your floppy drive system is complete.
ECHO To Start the program,
ECHO Insert #A-PFAS PROG in Drive A:
ECHO Insert #B-PFAS DATA in Drive B:
ECHO At the "A>" prompt type PFAS.
ECHO ------------------------------------------------------------------------
GOTO EXIT
:HARDRIVE
ECHO This operation will install P.F.A.S. to your Hard Drive System on Drive C:
ECHO ---------------------------------------------------------------------------
ECHO If this is NOT what you want then press "Ctrl C" keys and type "INSTALL" to
ECHO see options.
ECHO ---------------------------------------------------------------------------
ECHO Otherwise Press Any Other Key to Continue.
ECHO ---------------------------------------------------------------------------
PAUSE
CLS
ECHO This installation will make a sub-directory "C:\PFAS19"
ECHO If that is not O.K. then press "Ctrl C" keys to Quit.
ECHO -------------------------------------------------------------------------
PAUSE
MD C:\PFAS19
CLS
ECHO The Sub-directory "C:\PFAS19" is now created.
ECHO -------------------------------------------------------------------------
ECHO The P.F.A.S. program files will now be copied to the sub-directory
ECHO "C:\PFAS19" from this original P.F.A.S. Disk #1.
ECHO -------------------------------------------------------------------------
PAUSE
CLS
ECHO ON
COPY A:1.* C:\PFAS19
COPY A:2.* C:\PFAS19
COPY A:PFASRSTR.BAT C:\PFAS19
COPY A:PFASBKUP.BAT C:\PFAS19
COPY A:*.DAT C:\PFAS19
COPY A:*.EXE C:\PFAS19
COPY A:*.GEN C:\PFAS19
COPY A:*.MNU C:\PFAS19
COPY A:*.SCR C:\PFAS19
ECHO OFF
CLS
ECHO -------------------------------------------------------------------------
ECHO Installation to your Hard Drive is complete.
ECHO To Start the program,
ECHO type "PFAS" at the sub-directory "C:\PFAS19>" prompt.
ECHO -------------------------------------------------------------------------
ECHO The line "prompt=$p$g" should be in your AUTOEXEC.BAT file for the
ECHO "C>" drive prompt to denote sub-directory status as in "C:\PFAS19>".
ECHO -------------------------------------------------------------------------
GOTO EXIT
:SYNTAX
CLS
ECHO -------------------------------------------------------------------------
ECHO Type "INSTALL HD" for Hard Drive installation.
ECHO -------------------------------------------------------------------------
ECHO Type "INSTALL FL" for 2 Floppy Drive installation.
ECHO Refer to the PFAS.DOC file if you want to create a P.F.A.S. BOOT disk.
ECHO This Installation requires two (2) new formatted disks.
ECHO -------------------------------------------------------------------------
ECHO If you are unfamiliar with formatting diskettes, see your MS-DOS manual
ECHO under the heading "FORMAT". Formatting can be likened to creating grooves
ECHO on a record so the needle knows where to get the information.
ECHO -------------------------------------------------------------------------
GOTO EXIT
:EXIT